home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 023a / pcest20.zip / INSHARD.BAT < prev    next >
DOS Batch File  |  1988-10-18  |  901b  |  31 lines

  1. ECHO OFF
  2. CLS
  3. ECHO This batch program will create a subdirectory called PCEST on
  4. ECHO your hard disk and copy PC-Estimator files into this directory
  5. ECHO It will also add (files=20, buffers=24) lines to your
  6. ECHO Config.sys file. If it does not exist, it will be created.
  7. ECHO **** To abort, press CTRL and BREAK keys simultaneously
  8. ECHO To continue,
  9. PAUSE
  10. C:
  11. CD\
  12. IF NOT EXIST config.sys GOTO SAFETY
  13. COPY config.sys+a:\config.sys
  14. :SAFETY
  15. IF EXIST config.sys GOTO NEXTSAFE
  16. COPY A:config.sys
  17. :NEXTSAFE
  18. MD PCEST
  19. CD\PCEST
  20. COPY A:*.*
  21. ECHO Now insert PC-Estimator Disk #2 (Data Disk) in drive A
  22. ECHO To continue,
  23. PAUSE
  24. COPY A:*.*
  25. ECHO Installation complete...
  26. ECHO To start PC-Estimator at any time, go to PCEST directory
  27. ECHO Then type PCEST and press ENTER
  28. ECHO 
  29. ECHO IMPORTANT: As a one-time procedure, Bootup your computer
  30. ECHO            now before starting PC-Estimator
  31.